rerun 0.6.0

Log images, point clouds, etc, and visualize them effortlessly
Documentation

Rerun Rust logging SDK

Rerun is an SDK for logging computer vision and robotics data paired with a visualizer for exploring that data over time. It lets you debug and understand the internal state and data of your systems with minimal code.

cargo add rerun
rerun::MsgSender::new("points")
    .with_component(&points)?
    .with_component(&colors)?
    .send(&mut rerun::global_session())?;

rerun::MsgSender::new("image")
    .with_component(&[rerun::components::Tensor::from_image(image)?])?
    .send(&mut rerun::global_session())?;

Getting started

Library

You can add the rerun crate to your project with cargo add rerun.

To get started, see the examples.

Binary

You can install the binary with cargo install rerun-cli

This can act either as a server, a viewer, or both, depending on which options you use when you start it.

Running rerun with no arguments will start the viewer, waiting for an SDK to connect to it over TCP.

Run rerun --help for more.

Running a web viewer

The web viewer is an experimental feature, but you can try it out with:

rerun --web-viewer ../nyud.rrd